home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
win_utl2
/
pspa370a.zip
/
EXAMPL11.POM
< prev
next >
Wrap
Text File
|
1996-04-26
|
692b
|
33 lines
;
; Allow null lines
;
MINLEN "0"
;
; Properize, using the Properization Exceptions File GENERIC.PEF
; We properize using the Intelligent and Sentence methods
;
PROPER $FLINE "IS" "GENERIC.PEF"
;
; Because the list of items is not formatted as recognizable sentences,
; we must manually uppercase the first alphanumeric character.
;
BEGIN $FLINE[1] = "-"
PROPER $FLINE "ISU" "GENERIC.PEF"
END
;
; We will properize the indented items in the simplest way
;
BEGIN $FLINE[1] = " "
PROPER $FLINE
END
;
; The salutation line contains a name, so we must properize it
;
BEGIN $FLINE[1 4] = "Dear"
PROPER $FLINE
END
;
; Output
;
OUTEND |{$FLINE}